home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form msgrange
- BorderStyle = 3 'Fixed Dialog
- Caption = "Select Message Range"
- ClientHeight = 1320
- ClientLeft = 3390
- ClientTop = 2355
- ClientWidth = 3180
- ControlBox = 0 'False
- Height = 1725
- Left = 3330
- LinkTopic = "Form2"
- LockControls = -1 'True
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 1320
- ScaleWidth = 3180
- ShowInTaskbar = 0 'False
- Top = 2010
- Width = 3300
- Begin VB.CommandButton Cancel
- Cancel = -1 'True
- Caption = "Cancel"
- Height = 300
- Left = 1980
- TabIndex = 5
- Top = 615
- Width = 795
- End
- Begin VB.CommandButton Ok
- Caption = "OK"
- Default = -1 'True
- Height = 285
- Left = 1980
- TabIndex = 4
- Top = 255
- Width = 810
- End
- Begin VB.TextBox Last
- Height = 330
- Left = 600
- TabIndex = 3
- Top = 600
- Width = 1080
- End
- Begin VB.TextBox First
- Height = 315
- Left = 600
- TabIndex = 2
- Top = 240
- Width = 1080
- End
- Begin VB.Label Label1
- Alignment = 1 'Right Justify
- Caption = "Last:"
- Height = 315
- Index = 1
- Left = 45
- TabIndex = 1
- Top = 615
- Width = 465
- End
- Begin VB.Label Label1
- Alignment = 1 'Right Justify
- Caption = "First:"
- Height = 315
- Index = 0
- Left = 45
- TabIndex = 0
- Top = 270
- Width = 450
- End
- Attribute VB_Name = "msgrange"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Cancel_Click()
- Form1.Flag = 0
- Unload Me
- End Sub
- Private Sub First_GotFocus()
- First.SelStart = 0
- First.SelLength = Len(First.Text)
- End Sub
- Private Sub Last_GotFocus()
- Last.SelStart = 0
- Last.SelLength = Len(Last.Text)
- End Sub
- Private Sub Ok_Click()
- Form1.Flag = 1
- Form1.News1.FirstArticle = Val(First.Text)
- Form1.News1.LastArticle = Val(Last.Text)
- Unload Me
- End Sub
-